home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / util2 / hexdump.lha / hexdump / dmakefile < prev    next >
Makefile  |  1995-11-18  |  540b  |  34 lines

  1. # dmakefile
  2. #
  3. # designed to run on the DICE Amiga compiler
  4. #
  5. # written by Mark Carter 18.11.95
  6. #
  7. # This file is PUBLIC DOMAIN
  8.  
  9. HOME=/b2/pjr
  10. CC=dcc
  11. SRC=.
  12. DCC_FLAGS= -E err.txt
  13. CFLAGS=-c -DH_OFFSETS -DH_COMPRESS
  14. CFILES=hd.c hexprint.c
  15. OBJ=hd.o hexprint.o
  16.  
  17. hd:    $(OBJ)
  18.     $(CC) $(DCC_FLAGS) $(OBJ) -o hd
  19.  
  20. inst:    hd
  21.     cp hd $(HOME)/bin
  22.  
  23. hd.o:    hd.c hexprint.h
  24.     delete err.txt
  25.     $(CC) $(DCC_FLAGS) $(CFLAGS) -c hd.c
  26.  
  27. hexprint.o: hexprint.c  hexprint.h
  28.     delete err.txt
  29.     $(CC) $(DCC_FLAGS) $(CFLAGS) -c hexprint.c
  30.  
  31. clean :
  32.     delete err.txt
  33.     delete $(OBJ)
  34.